crypto/tls.serverHandshakeState.hello (field)
27 uses
crypto/tls (current package)
handshake_server.go#L29: hello *serverHelloMsg
handshake_server.go#L127: c.ekm = ekmFromMasterSecret(c.vers, hs.suite, hs.masterSecret, hs.clientHello.random, hs.hello.random)
handshake_server.go#L222: hs.hello = new(serverHelloMsg)
handshake_server.go#L223: hs.hello.vers = c.vers
handshake_server.go#L239: hs.hello.random = make([]byte, 32)
handshake_server.go#L240: serverRandom := hs.hello.random
handshake_server.go#L262: hs.hello.extendedMasterSecret = hs.clientHello.extendedMasterSecret
handshake_server.go#L263: hs.hello.secureRenegotiationSupported = hs.clientHello.secureRenegotiationSupported
handshake_server.go#L264: hs.hello.compressionMethod = compressionNone
handshake_server.go#L274: hs.hello.alpnProtocol = selectedProto
handshake_server.go#L287: hs.hello.scts = hs.cert.SignedCertificateTimestamps
handshake_server.go#L302: hs.hello.supportedPoints = []uint8{pointFormatUncompressed}
handshake_server.go#L565: hs.hello.cipherSuite = hs.suite.id
handshake_server.go#L569: hs.hello.sessionId = hs.clientHello.sessionId
handshake_server.go#L573: hs.hello.ticketSupported = true
handshake_server.go#L579: if _, err := hs.c.writeHandshakeRecord(hs.hello, &hs.finishedHash); err != nil {
handshake_server.go#L599: hs.hello.ocspStapling = true
handshake_server.go#L603: hs.hello.serverNameAck = true
handshake_server.go#L606: hs.hello.ticketSupported = hs.clientHello.ticketSupported && !c.config.SessionTicketsDisabled
handshake_server.go#L607: hs.hello.cipherSuite = hs.suite.id
handshake_server.go#L618: if _, err := hs.c.writeHandshakeRecord(hs.hello, &hs.finishedHash); err != nil {
handshake_server.go#L628: if hs.hello.ocspStapling {
handshake_server.go#L637: skx, err := keyAgreement.generateServerKeyExchange(c.config, hs.cert, hs.clientHello, hs.hello)
handshake_server.go#L736: if hs.hello.extendedMasterSecret {
handshake_server.go#L746: hs.clientHello.random, hs.hello.random)
handshake_server.go#L825: keysFromMasterSecret(c.vers, hs.suite, hs.masterSecret, hs.clientHello.random, hs.hello.random, hs.suite.macLen, hs.suite.keyLen, hs.suite.ivLen)
handshake_server.go#L882: if !hs.hello.ticketSupported {
 |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |